
# Remove Recipe + Add Shaped Recipe
recipes.remove(null);
recipes.addShaped(null, [
    [null, null, null],
    [null, null, null],
    [null, null, null]
    ]
);

recipes.remove(null);

mods.immersiveengineering.ArcFurnace.addRecipe(OUTPUT, INPUT, SLAG, TIME, ENERGY, [OTHER], "Alloying" or "Ores" or "None");

mods.immersiveengineering.BottlingMachine.addRecipe(IItemStack output, IIngredient input, ILiquidStack fluid);

mods.immersiveengineering.BlastFurnace.addRecipe(IItemStack output, IIngredient input, int time, @Optional IItemStack slag);

mods.ic2.Compressor.addRecipe(IItemStack output, IIngredient input);

mods.immersiveengineering.Crusher.addRecipe(output, input, energy, extra, chance);

mods.immersiveengineering.MetalPress.addRecipe(output, input, mold, energy);

AssemblyTable.addRecipe(output, power, [inputs]);